home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Talking Telnet / source / config / LinkedList.h < prev    next >
Text File  |  1996-06-22  |  118b  |  9 lines

  1. //LinkedList.h
  2.  
  3. typedef struct LinkedListNode {
  4.     StringHandle name;
  5.     struct LinkedListNode *next;
  6. } LinkedListNode;
  7.  
  8.  
  9.